home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ Opera 2.xpl < prev    next >
Text File  |  2001-02-10  |  2KB  |  99 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="3"
  4. "UIPATH"="Internet\Opera\"
  5. "NAME"="Security Settings"
  6. "VERSION"="1.10"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Enable SSL v2 secured connections"
  9. "TEXT 2"="Enable SSL v3 secured connections"
  10. "TEXT 3"="Enable TLS v1 secured connections"
  11. "DESCRIPTION 1"="Some options for Opera."
  12. "DESCRIPTION 2"="Opera may be obtained at http://www.opera.com"
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"="Thanks to CptSiskoX for the settings and the idea."
  18.  
  19.  
  20. sFile=""
  21. sVal_On="1"
  22. sVal_Off="0"
  23.  
  24. sSec="SECURITY PREFS"
  25. sV1="Enable SSL v2"
  26. sV2="Enable SSL v3"
  27. sV3="Enable TLS v1.0"
  28.  
  29.  
  30. Sub GetINIFile    
  31.     sPath=RegReadValue("HKCU\Software\Opera Software\Last Directory")
  32.     sFile=sPath & "\OPERA.ini"
  33.  
  34.     if FileExists(sFile)=false then
  35.        sFile=GetWinDir & "OPERA.ini"
  36.     end if   
  37. End Sub
  38.  
  39.  
  40. Sub Plugin_Initialize 
  41.  Call GetINIFile
  42.  
  43.  If FileExists(sFile) then
  44.  
  45.     i=IniReadValue(sFile,sSec,sV1)
  46.     if i=sVal_On then SetUiElement 1,true
  47.  
  48.     i=IniReadValue(sFile,sSec,sV2)
  49.     if i=sVal_On then SetUiElement 2,true
  50.  
  51.     i=IniReadValue(sFile,sSec,sV3)
  52.     if i=sVal_On then SetUiElement 3,true
  53.  
  54.  else
  55.     Call Disable()
  56.  End if
  57.  
  58. End Sub
  59.  
  60.  
  61. Sub Plugin_CheckData(ElementIndex)
  62. End Sub
  63.  
  64.  
  65.  
  66. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  67.  b=GetUIElement(1)
  68.  if b=true then 
  69.     s=sVal_On
  70.  else
  71.     s=sVal_Off
  72.  end if
  73.  Call iniWriteValue(sFile,sSec,sV1,s)
  74.  
  75.  b=GetUIElement(2)
  76.  if b=true then 
  77.     s=sVal_On
  78.  else
  79.     s=sVal_Off
  80.  end if
  81.  Call iniWriteValue(sFile,sSec,sV2,s)
  82.  
  83.  b=GetUIElement(3)
  84.  if b=true then 
  85.     s=sVal_On
  86.  else
  87.     s=sVal_Off
  88.  end if
  89.  Call iniWriteValue(sFile,sSec,sV3,s)
  90.  
  91. End Sub
  92.  
  93.  
  94. Sub Plugin_Terminate 
  95. End Sub
  96.  
  97.  
  98.  
  99.